--- /dev/null
+Author: Gert Wollny <gw.fossdev@gmail.com>
+Description: Fix warning about writing beyond end of character array.
+ Actually, the overflow is _very_unlikely, because having a series with
+ more then one million frames in a series is highly unlikely, but this
+ fix has no relevant implications on the memory and runtime footprint of
+ the code.
+Last-Changed: 2017-09-06
+
+--- a/dcmnet/apps/storescp.cc
++++ b/dcmnet/apps/storescp.cc
+@@ -2470,7 +2470,7 @@
+ // determine the new file name: The first two characters of the old file name make up the [modality-prefix].
+ // The value for [consecutive-numbering] will be determined using the counter variable.
+ char modalityId[3];
+- char newFileName[9];
++ char newFileName[13];
+ if (opt_timeNames)
+ {
+ // modality prefix are the first 2 characters after serial number (if present)
07_dont_export_all_executables.patch
08_remove_system_processor.patch
09_fix_format_on_32bit.patch
+10_correct_format_output_size.patch